All Questions
2 questions
0votes
1answer
34views
Reinitialise directive on change of attribute
I have two directives, calling 2nd directive from 1st directive. This is my 1st directive var initializeWidget = function ($compile, $timeout, $rootScope) { return { restrict: 'EA',...
3votes
1answer
84views
Dependencies of directives
I am using a third party-directive in my angular app. I need to extend the functionality with my own directive and ran into some troubles with the order in which the directives are instanciated. The ...